home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / PowerPlant / LProgressIndicator & Friends / Threads App Source / CThreadsApp.h < prev    next >
Encoding:
Text File  |  1996-04-19  |  703 b   |  24 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    CThreadsApp.h                     ©1996 Metrowerks Inc. All rights reserved.
  3. // =================================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LApplication.h>
  8.  
  9. class CThreadsApp : public LApplication {
  10. public:
  11.                             CThreadsApp();
  12.     virtual                 ~CThreadsApp();
  13.  
  14.     virtual Boolean            ObeyCommand( CommandT inCommand, void *ioParam );
  15.     virtual void            FindCommandStatus( CommandT inCommand,
  16.                                 Boolean &outEnabled, Boolean &outUsesMark,
  17.                                 Char16 &outMark, Str255 outName );
  18.  
  19.     virtual void            AdjustCursor    (const EventRecord &inMacEvent);
  20.     
  21. protected:
  22.     virtual void            StartUp();
  23. };
  24.